home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.7 KB | 74 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _CLIPBD_
- #define _CLIPBD_
-
- #ifndef _CLIPBDB_
- #include "ClipbdB.idl"
- #endif
-
- //=====================================================================================
- // Constants defined in this interface
- //=====================================================================================
- const ODULong kODNoWait = 0; // For the wait parameter to Lock()
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
-
- interface ODClipboard;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
- interface ODStorageUnit;
- interface ODDraft;
- interface ODDocument;
- interface ODContainer;
- interface ODSession;
- interface ODPlatformTypeSet;
-
- //=====================================================================================
- // ODClipboard
- //=====================================================================================
-
- #ifdef _PLATFORM_MACINTOSH_
-
- interface ODClipboard : ODBaseClipboard
- {
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit,
- Purge,
- Lock,
- Unlock,
- GetChangeID,
- Clear,
- GetContentStorageUnit,
- SetPlatformClipboard,
- ExportClipboard;
- releaseorder:
- reserved1,
- reserved2,
- reserved3,
- reserved4,
- reserved5,
- reserved6,
- reserved7,
- reserved8,
- reserved9;
-
- majorversion = 1; minorversion = 0;
-
-
- };
- #endif
- };
-
- #endif //# _PLATFORM_MACINTOSH_
-
- #endif // _CLIPBD_
-